質問編集履歴
2
解決に不要な警告メッセージの削除
title
CHANGED
File without changes
|
body
CHANGED
@@ -11,12 +11,6 @@
|
|
11
11
|
### 発生している問題・エラーメッセージ
|
12
12
|
|
13
13
|
```
|
14
|
-
vector > Warning: 'a' is out of scope.
|
15
|
-
vector > If you qualify the identifier, haddock can try to link it anyway.
|
16
|
-
vector > Warning: 'b' is out of scope.
|
17
|
-
vector > If you qualify the identifier, haddock can try to link it anyway.
|
18
|
-
vector > Warning: 'fromList' is ambiguous. It is defined
|
19
|
-
vector Progress 4/15
|
20
14
|
<stderr>: commitAndReleaseBuffer: invalid argument (invalid character)
|
21
15
|
|
22
16
|
<stderr>: commitAndReleaseBuffer: invalid argument (invalid character)
|
1
stack.yaml追加
title
CHANGED
File without changes
|
body
CHANGED
@@ -40,6 +40,24 @@
|
|
40
40
|
|
41
41
|
```
|
42
42
|
|
43
|
+
stack.yaml
|
44
|
+
```yaml
|
45
|
+
resolver:
|
46
|
+
url: https://raw.githubusercontent.com/commercialhaskell/stackage-snapshots/master/lts/17/10.yaml
|
47
|
+
|
48
|
+
# User packages to be built.
|
49
|
+
# Various formats can be used as shown in the example below.
|
50
|
+
#
|
51
|
+
# packages:
|
52
|
+
# - some-directory
|
53
|
+
# - https://example.com/foo/bar/baz-0.0.2.tar.gz
|
54
|
+
# subdirs:
|
55
|
+
# - auto-update
|
56
|
+
# - wai
|
57
|
+
packages:
|
58
|
+
- .
|
59
|
+
```
|
60
|
+
|
43
61
|
### 試したこと
|
44
62
|
|
45
63
|
警告を抑制したらいいのかなと思って以下をしても問題解決せず
|